home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / winmx_installed.nasl < prev    next >
Text File  |  2005-03-08  |  1KB  |  59 lines

  1. #
  2. # This script was written by Xue Yong Zhi <xueyong@udel.edu>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11430);
  10. # script_cve_id("CVE-MAP-NOMATCH");
  11.  
  12.  
  13.  script_version("$Revision: 1.5 $");
  14.  
  15.  name["english"] = "WinMX is installed";
  16.  
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote host is using WinMX - a p2p software, which may not 
  21. be suitable for a business environment. 
  22.  
  23. Solution : Uninstall this software
  24. Risk factor : Low";
  25.  
  26.  
  27.  
  28.  script_description(english:desc["english"]);
  29.  
  30.  summary["english"] = "Determines if WinMX is installed";
  31.  
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2003 Xue Yong Zhi");
  37.  family["english"] = "Peer-To-Peer File Sharing";
  38.  script_family(english:family["english"]);
  39.  
  40.  script_dependencies("netbios_name_get.nasl",
  41.               "smb_login.nasl","smb_registry_access.nasl");
  42.  script_require_keys("SMB/name", "SMB/login", "SMB/password",
  43.              "SMB/domain","SMB/transport");
  44.  
  45.  script_require_ports(139, 445);
  46.  exit(0);
  47. }
  48.  
  49.  
  50. include("smb_nt.inc");
  51.  
  52.  
  53. rootfile = registry_get_sz(key:"SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\WinMX", item:"DisplayName");
  54. if(rootfile)
  55. {
  56.  security_note(get_kb_item("SMB/transport"));
  57. }
  58.  
  59.